home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / grafik / 3d & render tools / irit / man / man6 / moffset.6 < prev    next >
Text File  |  1996-07-16  |  877b  |  28 lines

  1. .TH MOFFSET
  2.  6 "IRIT Version 6.0" 
  3. .SH NAME
  4. MOFFSET
  5.  
  6.  
  7.  
  8.  CurveType MOFFSET( CurveType Crv, NumericType OffsetDistance,
  9.                     NumericType AngularError )
  10.  
  11. Computes an offset of OffsetDistance with globally bounded error
  12. (controlled by AngularError). The smaller AngularError is, the better
  13. the approximation to the offset. The bounded error is achieved by adaptive
  14. refinement of the Crv.
  15. The offset is computed via matching of the tangent fields of the
  16. given curve Crv and an arc spanning the same angular domain.
  17. Further, AngularError measures the angular deviation allowed
  18. between the two tangent fields.
  19.  
  20. Example:
  21.  
  22.     OffCrv1 = MOFFSET( Crv, -0.4, 10 );
  23.     OffCrv2 = MOFFSET( Crv, -0.4, 5 );
  24.  
  25. computes an offset approximation to Crv with OffsetDistance of
  26. -0.4 and AngularError of 10 and 5 degrees, respectively.
  27. See also OFFSET, AOFFSET, LOFFSET, and FFMATCH.
  28.